We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I need to index n-dimensional sparse arrays. So, following suggestions from #846 I tried to do:
enum Men = Man({(5,6), (7,12), (12,4)}); array[Men] of var 0..100: age; constraint age[Man((12, 4))] == 42; solve satisfy; output ["age= \(age)"];
Resulting in the error
MiniZinc: type error: set literals cannot contain tuples
Would it be possible to support this kind of use-cases?
NB: this may relate to #511
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
I need to index n-dimensional sparse arrays. So, following suggestions from #846 I tried to do:
Resulting in the error
Would it be possible to support this kind of use-cases?
NB: this may relate to #511
The text was updated successfully, but these errors were encountered: